home *** CD-ROM | disk | FTP | other *** search
/ SuperModels in the Rainforest / SuperModels in the Rainforest.iso / rain.dxr / 00009_Girl Advance Video Sprite Script.ls < prev    next >
Encoding:
Text File  |  1995-10-13  |  285 b   |  14 lines

  1. on mouseDown
  2.   global giCurrentGirl, giMaxGirls
  3.   buttonLogic()
  4.   if the result = 1 then
  5.     if giCurrentGirl = giMaxGirls then
  6.       go("MainLoopStart")
  7.       set giCurrentGirl to 1
  8.     else
  9.       go(the frame + 1)
  10.       set giCurrentGirl to giCurrentGirl + 1
  11.     end if
  12.   end if
  13. end
  14.